home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 39
/
Aminet 39 (2000)(Schatztruhe)[!][Oct 2000].iso
/
Aminet
/
mus
/
play
/
DelfMPEG.lha
/
DelfMPEG
/
rexx
/
launch
< prev
next >
Wrap
Text File
|
2000-07-27
|
407b
|
22 lines
/** DelfMPEG ARexx test **/
/* usage: rx launch */
if show(ports,DELFMPEG) then do
say 'DelfMPEG is already running.'
return 5
end
ADDRESS COMMAND 'run <>NIL: DelfMPEG AREXX SHOWTAG'
do loop=1 to 10
ADDRESS COMMAND 'wait 1'
if ~show(ports,DELFMPEG) then say 'waiting...'
else do
say 'DelfMPEG launch o.k.'
return 0
end
end
say 'DelfMPEG launch failed.'
return 20